Search
Series3D Constructor
See Also
 






Initializes a new instance of the Series3D class.

Namespace: com.mindfusion.charting
File: com.mindfusion.charting

 Syntax

Java  Copy Code

public Series3D (
    List<Double> xValues,
    List<Double> yValues,
    List<Double> zValues,
    List<String> labels
)

 Parameters

xValues
A list with data values that are used to calculate the X-coordinates of Series3D points.
yValues
A list with data values that are used to calculate the Y-coordinates of Series3D points.
zValues
A list with data values that are used to calculate the Z-coordinates of Series3D points.
labels

A list of labels.

 See Also